VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Annotation Namespace / AnnotationDataCollection Class / Sort Methods / Sort<TKey>(TKey[]) Method
Syntax Requirements SeeAlso
In This Topic
    Sort<TKey>(TKey[]) Method (AnnotationDataCollection)
    In This Topic
    Sorts the elements in the entire AnnotationDataCollection based on the keys in the array using the System.IComparable implementation of each key.
    Syntax
    'Declaration
    
    Public Overloads Sub Sort<TKey
    The key type.
    >( _
    ByVal keys
    The one-dimensional zero-based array that contains the keys to sort.
    () As TKey _
    ) (Of TKey
    The key type.
    )
    public void Sort<TKey>(
    TKey[] keys
    )
    public: void Sort<TKey>(
    TKey*[]* keys
    )
    generic<typename TKey>
    public:
    void Sort(
    array<TKey^>^ keys
    )

    Parameters

    keys
    The one-dimensional zero-based array that contains the keys to sort.

    Type Parameters

    TKey
    The key type.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also